home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Graphics Programming (2nd Edition) / Visual Basic Graphics Programming 2nd Edition.iso / Src / Ch1 / Wrong.frm (.txt) < prev   
Visual Basic Form  |  1999-03-15  |  1KB  |  50 lines

  1. VERSION 5.00
  2. Begin VB.Form frmWrong 
  3.    AutoRedraw      =   -1  'True
  4.    BackColor       =   &H00FFFFFF&
  5.    BorderStyle     =   3  'Fixed Dialog
  6.    Caption         =   "Wrong"
  7.    ClientHeight    =   1110
  8.    ClientLeft      =   2220
  9.    ClientTop       =   2325
  10.    ClientWidth     =   1785
  11.    LinkTopic       =   "Form2"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    PaletteMode     =   1  'UseZOrder
  15.    ScaleHeight     =   1110
  16.    ScaleWidth      =   1785
  17.    ShowInTaskbar   =   0   'False
  18.    Begin VB.Menu mnuFile 
  19.       Caption         =   "&File"
  20.       Begin VB.Menu mnuFileExit 
  21.          Caption         =   "E&xit"
  22.       End
  23.    End
  24. Attribute VB_Name = "frmWrong"
  25. Attribute VB_GlobalNameSpace = False
  26. Attribute VB_Creatable = False
  27. Attribute VB_PredeclaredId = True
  28. Attribute VB_Exposed = False
  29. Option Explicit
  30. ' Make the form's exterior one inch square.
  31. Private Sub Form_Load()
  32. Dim i As Single
  33.     ' Size the form.
  34.     Width = 1440
  35.     Height = 1440
  36.     ' Draw some "squares."
  37.     Scale (0, 100)-(100, 0)
  38.     For i = 10 To 90 Step 10
  39.         Line (0, i)-(100, i)
  40.         Line (i, 0)-(i, 100)
  41.     Next i
  42. End Sub
  43. Private Sub Form_Unload(Cancel As Integer)
  44.     If Not frmRight Is Nothing Then _
  45.         Unload frmRight
  46. End Sub
  47. Private Sub mnuFileExit_Click()
  48.     Unload Me
  49. End Sub
  50.